home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / HOST16._B_ < prev    next >
Text File  |  1997-07-26  |  505b  |  25 lines

  1. #
  2. # Borland makefile for HOST [Win16]
  3. # Requires WIL16.DLL & WIL16.LIB
  4. #
  5. # To use: "make -f host16._B_"
  6. #
  7.  
  8. CCFLAGS = -c
  9.  
  10. host.exe: host.res host.obj about.obj paint.obj wil16.lib
  11.   tlink -c -n -Tw  c0ws @host.rsp,host,host,mathws cws import wil16,host,host
  12.   rlink host.res host.exe
  13.  
  14. host.res: host.rc
  15.    brcc host.rc
  16.  
  17. about.obj: about.c about.h
  18.    bcc $(CCFLAGS)  about.c
  19.  
  20. host.obj: host.c  wil.h
  21.    bcc $(CCFLAGS)  host.c
  22.  
  23. paint.obj: paint.c paint.h
  24.    bcc $(CCFLAGS)  paint.c  
  25.